| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | /*global document */ |
||
| 7 | constructor() { |
||
| 8 | this._page = document.querySelector('body').getAttribute('data-page') |
||
| 9 | // this._formCreate = document.querySelector('.form-create') |
||
| 10 | var forms = document.querySelectorAll('[data-form-abe-create]') |
||
| 11 | Array.prototype.forEach.call(forms, function(form) { |
||
| 12 | new FormCreate(form) |
||
|
|
|||
| 13 | }) |
||
| 14 | |||
| 15 | this._bindEvents() |
||
| 16 | } |
||
| 17 | |||
| 31 | new Admin() |
||